home *** CD-ROM | disk | FTP | other *** search
/ A Brief History of Time - An Interactive Adventure / A Brief History of Time: An Interactive Adventure.iso / pc / 07.dir / 00108_Script_108 < prev    next >
Text File  |  1995-07-21  |  2KB  |  58 lines

  1. global fSep
  2.  
  3. on startMovie
  4.   global voicePath
  5.   global soundTrackPath
  6.   global currentVoice
  7.   global currentsoundTrack
  8.   global vWindow
  9.   global vSlider1
  10.   global vSlider2
  11.   global sliderTop
  12.   global sliderBottom
  13.   global volumeHPositions
  14.   global ambientLevel
  15.   global voiceLevel
  16.   global gWaitForUser
  17.   puppetSprite 45, False
  18.   -- set gWaitForUser = False -- COMMENTED OUT 7/21/95 to fix AutoPlay bug
  19.   
  20.   --****************************************************
  21.   -- This should only be done once in the setup movie
  22.   --put the pathName&"VOICE"&fSep into voicePath
  23.   --put the pathName&"SNDTRACK"&fSep into soundTrackPath
  24.   --****************************************************
  25.   
  26.   
  27.   -- This is movie or section specific
  28.   -- This sets the volume level for the background sounds
  29.   put 75 into ambientLevel
  30.   -- This sets the volume level for the voice overs
  31.   put 255 into voiceLevel
  32.   
  33.   --****************************************************
  34.   -- You need to set the currentVoice and currentSoundTrack variables for each file or
  35.   -- section you're in
  36.   put "SILENCE.AIF" into currentsoundTrack
  37.   --****************************************************
  38.   
  39.   -- Call the soundSetup ( in shared cast) now that the variables have been defined
  40.   set vWindow = 46
  41.   set vSlider1 = 47
  42.   set vSlider2 = 48
  43.   soundSetup
  44.   puppetVolumeControls
  45.   
  46.   
  47.   -- This should also be done in the first frame of each movie
  48.   -- This turns on the puppet for the sound and voice slider controls
  49. on puppetVolumeControls
  50.   global vWindow,vSlider1,vSlider2
  51.   puppetSprite vWindow,1
  52.   puppetSprite vSlider1,1
  53.   puppetSprite vSlider2,1
  54. end puppetVolumeControls
  55.  
  56.  
  57. end
  58.